home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Games / Xconq 7.0d16 / lib / ng-american.g < prev    next >
Encoding:
Text File  |  1993-12-20  |  449 b   |  15 lines  |  [TEXT/MPS ]

  1. ;;; American names tend to be a hodgepodge of Indian, Spanish, English, etc,
  2. ;;; sometimes even mixed together, and usually distorted to boot.
  3.  
  4. (namer american-place-names (grammar root 9
  5.   (root (or amerindian-name
  6.         english-name
  7.         spanish-name
  8.     ))
  9.   (amerindian-name ("?"))
  10.   (english-name ("?"))
  11.   (spanish-name (or saint-name spanish-word ("los " spanish-word)))
  12.   (saint-name ("San " (or jose francisco lucas joao juan luis miguel)))
  13. ))
  14.  
  15.